ConvCASE$
LWC$
LOWER$
UPC$
UPPER$

Syntax: ConvCASE$ (string$ [,lower])
   and: LOWER$ (string$)
   and: LWC$ (string$)
   and: UPC$ (string$)
   and: UPPER$ (string$)
Location: BTool (ConvCASE$)
          DIY Toolkit (LOWER$, UPPER$)
          LWCUPC (LWC$,UPC$)
          TinyToolkit (UPPER$)

ConvCASE$ returns the given string with all upper case letters converted to lower case if lower=1, or all lower case letters to upper case if lower=0. Default of lower is 1

LOWER$ converts the given string to lower case (it works with UK and accented characters).

LWC$ is the same as LOWER$ except that only the standard English alphabet is recognised.

UPPER$ converts the given string to upper case (the DIY Toolkit version will even convert non-English characters).
UPC$ is similar, but does not convert non-English characters.

NOTE:
Unlike similar functions ConvCASE$ will recognise all non-ASCII letters, namely umlauts and accents.

CROSS-REFERENCE:
CHR$
